a11y tests: Update assistant ui file
authorMatthias Clasen <mclasen@redhat.com>
Fri, 8 Feb 2019 14:51:02 +0000 (09:51 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 8 Feb 2019 14:51:45 +0000 (09:51 -0500)
The conversion was done with gtk-builder-tool simplify --3to4.

testsuite/a11y/assistant.ui

index aed2044489eab67580d1a7e689e140690af5c033..dfe2785526fe51a0b6224548e38e3d0ab6613562 100644 (file)
@@ -1,28 +1,27 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <interface>
-  <!-- interface-requires gtk+ 3.0 -->
   <object class="GtkAssistant" id="window1">
-    <property name="can_focus">False</property>
     <property name="type">popup</property>
     <child>
-      <object class="GtkButton" id="button1">
-        <property name="label" translatable="yes">Button 1</property>
-        <property name="visible">True</property>
-        <property name="can_focus">True</property>
-      </object>
-      <packing>
+      <object class="GtkAssistantPage">
         <property name="title" translatable="yes">Page 1</property>
-      </packing>
+        <property name="child">
+          <object class="GtkButton" id="button1">
+            <property name="label" translatable="yes">Button 1</property>
+            <property name="can_focus">1</property>
+          </object>
+        </property>
+      </object>
     </child>
     <child>
-      <object class="GtkButton" id="button2">
-        <property name="label" translatable="yes">Button 2</property>
-        <property name="visible">True</property>
-        <property name="can_focus">True</property>
-      </object>
-      <packing>
+      <object class="GtkAssistantPage">
         <property name="title" translatable="yes">Page 2</property>
-      </packing>
+        <property name="child">
+          <object class="GtkButton" id="button2">
+            <property name="label" translatable="yes">Button 2</property>
+            <property name="can_focus">1</property>
+          </object>
+        </property>
+      </object>
     </child>
   </object>
 </interface>